systemctl start and systemctl enable do different things. enable will hook the specified unit into relevant places, so that it will automatically start on boot.
To enable a service at boot: > sudo systemctl enable SERVICE ; To disable a service from starting automatically: > sudo systemctl disable SERVICE